home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / src / ConfigFileSrc.lha / ConfigFileSrc12 / Library / String.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-02  |  596 b   |  24 lines

  1. /*
  2. **        $PROJECT: ConfigFile.library
  3. **        $FILE: String.h
  4. **        $DESCRIPTION: Header file of prototypes.
  5. **
  6. **        (C) Copyright 1996-1997 Marcel Karas
  7. **             All Rights Reserved.
  8. */
  9.  
  10. #ifndef STRING_H
  11. #define STRING_H 1
  12.  
  13. extern ULONG   __builtin_strlen(STRPTR);
  14. extern ULONG   __builtin_strcmp(STRPTR, STRPTR);
  15. extern STRPTR  __builtin_strcpy(STRPTR, STRPTR);
  16. extern VOID    __builtin_memcpy(APTR,APTR,ULONG);
  17.  
  18. #define StrLen(a)   __builtin_strlen(a)
  19. #define StrCmp(a,b) __builtin_strcmp(a,b)
  20. #define StrCpy(a,b) __builtin_strcpy(a,b)
  21. #define MemCpy(a,b,c) __builtin_memcpy(a,b,c)
  22.  
  23. #endif /* STRING_H */
  24.